home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / etc / a.out.c < prev    next >
Text File  |  1989-07-21  |  1KB  |  32 lines

  1. /* 
  2.  * a.out.c --
  3.  *
  4.  *    This file contains constants associated with a.out files,
  5.  *    for example a table of page sizes for different machines.
  6.  *
  7.  * Copyright 1988 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  */
  16.  
  17. #ifndef lint
  18. static char rcsid[] = "$Header: /sprite/src/lib/c/etc/RCS/a.out.c,v 1.2 89/07/17 15:12:53 mgbaker Exp $ SPRITE (Berkeley)";
  19. #endif not lint
  20.  
  21. /*
  22.  * Page size for different machines.  These correspond to the machine
  23.  * types defined in exec.h
  24.  */
  25.  
  26. int Aout_PageSize[] = {
  27.     0x0,            /* Undefined machine type. */
  28.     0x1000,            /* M_68010 (Sun-2) */
  29.     0x2000,            /* M_68020 (Sun-3) */
  30.     0x2000            /* SPARC (Sun-4) */
  31. };
  32.